home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib7 / v_09_10 / 9n10024c < prev    next >
Encoding:
Text File  |  1995-11-01  |  313 b   |  13 lines

  1.  
  2. /* --------------------------------------------------------------
  3.  
  4. FUNCTION COUNT_NODES: Just display the counter we've been keeping.
  5.  
  6. -------------------------------------------------------------- */
  7.  
  8. void count_nodes(void)
  9. {
  10.         printf("\n\tThere are %u nodes in the list\n", nodes_in_use);
  11. }
  12.  
  13.